DataSource for Entity Framework in WPF
C1.LiveLinq.Indexing.Search Namespace / IIndexScanner<T> Interface / FindKeys Method
The key values to search for.
Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

In This Topic
    FindKeys Method (IIndexScanner<T>)
    In This Topic
    Finds items containing any of the specified key values.
    Syntax
    'Declaration
     
    Function FindKeys( _
       ByVal keys As IEnumerable, _
       ByVal order As Order _
    ) As IndexQuery(Of T)
    IndexQuery<T> FindKeys( 
       IEnumerable keys,
       Order order
    )

    Parameters

    keys
    The key values to search for.
    order
    Optionally specifies the order of the key values to sort the result (C1.LiveLinq.Order.Unordered if sorting is not required).

    Return Value

    An object enumerating all items whose key values belong to the specified key value collection.
    See Also